home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
choices
/
chcssml1.lha
/
Debug.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-02-06
|
1KB
|
35 lines
/*
* This file is part of the Choices Operating System Simulator
* Developed by: The TAPESTRY Parallel Computing Laboratory
* University of Illinois at Urbana-Champaign
* Department of Computer Science
* 1304 W. Springfield Ave.
* Urbana, IL 61801
*
* Copyright (c) 1987, 1988, 1989 The University of Illinois Board of Trustees.
* All Rights Reserved.
* CONFIDENTIAL INFORMATION. Distribution restricted under license agreement.
*
* Author: Gary M. Johnston (johnston@cs.uiuc.edu)
* Project Manager and Principal Investigator: Roy Campbell (roy@cs.uiuc.edu)
*
* Funded by: NSF TAPESTRY Grant No. 1-5-30035, NASA ICLASS Grant
* No. 1-5-25469 and No. NSG1471 and AT&T Metronet Grant No. 1-5-37411.
*/
/*
* $Header: Debug.c,v 1.1 88/02/12 18:19:39 johnston Exp $
* $Locker: johnston $
*/
#include <stdio.h>
#include <varargs.h>
#include "Debug.h"
extern void _doprnt(const char * format, char * argp, FILE * file);
void
_debug(const char * format, ...)
{
_doprnt(format, (char *) (&format + 1), stderr);
}